home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-08-26 | 632 b | 30 lines |
- # NATIVE BUILD ONLY
-
- SU=lib:c.o
- CC=lc
- xCCF=-csf -v -o
- CCF=-csf -v -b0 -iinclude: -o
- LN=blink
- LNF=NODEBUG SMALLCODE SMALLDATA DEFINE __main=__tinymain
- LIBS=lib:lc.lib+lib:amiga.lib+lib:debug.lib
-
- INC=/common/local.h app.h
- OBJ=main.o cx.o window.o app.o
-
- blank.ld: $(OBJ)
- $(CC) $(CCF)revision.o revision.c
- delete blank_rev.i
- $(LN) $(LNF) FROM $(SU) $(OBJ) revision.o LIB $(LIBS) TO $@
-
- main.o : /common/main.c $(INC)
- $(CC) $(CCF)$@ /common/main.c
-
- cx.o : /common/cx.c $(INC)
- $(CC) $(CCF)$@ /common/cx.c
-
- window.o : /common/window.c $(INC)
- $(CC) $(CCF)$@ /common/window.c
-
- app.o : app.c app.h
- $(CC) $(CCF)$@ app.c
-